HTML Introduction
What is HTML introduction?
HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content.
What is a definition in HTML?
A Definition List in HTML is used to represent a list of terms along with their corresponding descriptions or definitions. The Definition List is created using the (Definition List) element, which wraps around one or more pairs of (Definition Term) and (Definition Description) elements.
Why is HTML used?
HTML is used to provide structure to a webpage and make it accessible to users of the internet through text, visual formatting and search factors. It is commonly known as the most basic building block of the web, working alongside CSS and JavaScript to create the websites we see while browsing.
Who created HTML?
The first version of HTML was written by Tim Berners-Lee in 1993. Since then, there have been many different versions of HTML. The most widely used version throughout the 2000's was HTML 4.01, which became an official standard in December 1999. Another version, XHTML, was a rewrite of HTML as an XML language.
<!DOCTYPE html>
<html>
<head>
<title> page Title </title>
</head>
<body>
<h1> My First Heading </h1>
<p> My First Paragraph </p>
</body>
</html>
HTML Code Explain
- The <!DOCTYPE html> declaration defines that this document is an HTML5 document
- The <html> element is the root element of an HTML page
- The <head> element contains meta information about the HTML page
- The <title> element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)
- The <body> element defines the document's body, and is a container for all the visible contents, such as headings,paragraphs, images, hyperlinks, tables, lists, etc.
- The <h1> element defines a large heading
- The <p> element defines a paragraph
Chapter-HTML Intoduction in english
Duration-2m33s
Chapter-HTML Intoduction in hindi
Duration-9m33s